mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00:00
15 lines
158 B
Docker
15 lines
158 B
Docker
FROM denoland/deno:2.0.1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY deno.json .
|
|
|
|
RUN deno install
|
|
|
|
COPY . .
|
|
RUN deno cache main.ts
|
|
|
|
ARG PORT=8000
|
|
EXPOSE $PORT
|
|
|
|
CMD ["task", "start"] |