You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
198 B
Docker
15 lines
198 B
Docker
2 years ago
|
FROM denoland/deno:alpine as builder
|
||
|
|
||
|
WORKDIR /app
|
||
|
ADD . .
|
||
|
|
||
|
RUN deno task build
|
||
|
|
||
|
|
||
|
FROM nginx:alpine
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
ADD ./nginx.conf /etc/nginx/nginx.conf
|
||
|
COPY --from=builder /app/_site /var/www/html
|