Files
test/Dockerfile
Jan Rabcan 58653e89e7
Some checks failed
internetmastercz/test/pipeline/head There was a failure building this commit
add website.
2021-10-20 02:39:36 +02:00

14 lines
244 B
Docker

FROM hayd/alpine-deno:1.3.1
EXPOSE 8000
WORKDIR /app
USER deno
COPY --chown=deno . .
RUN deno cache --unstable app.ts
CMD ["run", "--allow-net=0.0.0.0:8000", "--allow-read=less,public/assets", "--allow-write=public/assets/css", "app.ts"]