Update Dockerfile to add a new startup script and adjust permissions for entrypoint and startup scripts, simplifying the command execution process.
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m54s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m54s
This commit is contained in:
@@ -44,8 +44,9 @@ ENV PORT=3000
|
||||
ENV HOSTNAME="0.0.0.0"
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY docker-start.sh /start.sh
|
||||
RUN apt-get update -y && apt-get install -y gosu && rm -rf /var/lib/apt/lists/* \
|
||||
&& chmod +x /entrypoint.sh
|
||||
&& chmod +x /entrypoint.sh /start.sh
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["sh", "-c", "npx prisma migrate deploy && node server.js"]
|
||||
CMD ["/start.sh"]
|
||||
|
||||
Reference in New Issue
Block a user