mirror of
https://github.com/bewcloud/bewcloud.git
synced 2026-03-11 08:54:49 +00:00
16 lines
267 B
Docker
16 lines
267 B
Docker
FROM denoland/deno:ubuntu-2.5.1
|
|
|
|
EXPOSE 8000
|
|
|
|
RUN apt-get update && apt-get install -y make
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN deno task build
|
|
RUN deno cache _fresh/server.js
|
|
|
|
# Allow the crons to start
|
|
ENV START_BEWCLOUD_CRONS=true
|
|
|
|
CMD ["serve", "-A", "_fresh/server.js"]
|