13 lines
153 B
Docker
13 lines
153 B
Docker
FROM denoland/deno:latest
|
|
|
|
ARG GIT_REVISION
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN deno cache main.ts && deno task build
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["run", "-A", "main.ts"]
|