updating docker compose

This commit is contained in:
2025-12-29 21:49:59 -06:00
parent 835958b0c9
commit 96cddf347c
6 changed files with 41 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 node:22-slim
FROM node:22
WORKDIR app
COPY ./api/dist ./api/dist
@@ -9,10 +9,10 @@ WORKDIR api
RUN npm ci
WORKDIR /
COPY ./api/entrypoint.sh ./entrypoint.sh
RUN chmod +x entrypoint.sh
COPY ./api/entrypoint.sh ./app/entrypoint.sh
RUN chmod +x ./app/entrypoint.sh
EXPOSE 3000
ENTRYPOINT ["/entrypoint.sh"]
CMD ["./app/entrypoint.sh"]
# ENTRYPOINT ["tail", "-f", "/dev/null"]