This commit is contained in:
Rizky 2024-01-21 18:03:47 +07:00
parent 80d6357a27
commit 953c0d4314
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
FROM oven/bun:1.0.18-debian as base FROM oven/bun:1.0.18-debian as base
WORKDIR /app/docker
COPY docker.ts docker.ts
RUN apt-get update RUN apt-get update
RUN apt-get install git curl gnupg zip unzip -yq RUN apt-get install git curl gnupg zip unzip -yq
@ -12,4 +14,4 @@ RUN npm i -g @parcel/watcher node-gyp-build-optional-packages node-gyp
EXPOSE 4550/tcp EXPOSE 4550/tcp
CMD [ "bun", "run", "prod" ] CMD [ "bun", "run", "docker.ts" ]