This commit is contained in:
13
store/Dockerfile
Normal file
13
store/Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM denoland/deno:alpine
|
||||
|
||||
ARG GIT_REVISION
|
||||
ENV DENO_DEPLOYMENT_ID=${GIT_REVISION}
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
RUN deno cache main.ts && deno task build
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["task", "run"]
|
Reference in New Issue
Block a user