12 lines
186 B
Docker
12 lines
186 B
Docker
FROM debian AS builder
|
|
|
|
RUN apt-get update && apt-get install -y curl git
|
|
|
|
COPY . /site
|
|
WORKDIR /site
|
|
RUN ./build.sh
|
|
|
|
FROM nginx
|
|
|
|
COPY --from=builder /site/public/ /usr/share/nginx/html
|