Some checks failed
internetmastercz/test/pipeline/head There was a failure building this commit
14 lines
244 B
Docker
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"]
|