Fix Docker image in wrong directory

This commit is contained in:
Jesse Wierzbinski 2023-11-27 12:08:18 -10:00
parent a4e84ec3e8
commit 6768ed289f
No known key found for this signature in database

View file

@ -41,4 +41,6 @@ RUN bunx prisma generate
USER root USER root
RUN rm /usr/local/bin/node RUN rm /usr/local/bin/node
USER bun USER bun
# CD to app
WORKDIR /app
ENTRYPOINT [ "bun", "run", "index.ts" ] ENTRYPOINT [ "bun", "run", "index.ts" ]