diff --git a/Dockerfile b/Dockerfile index f8e0f34..91d3d3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,11 +54,10 @@ COPY --from=builder /app/templates ./templates COPY --from=builder /app/static ./static COPY --from=builder /app/dist ./dist COPY --from=builder /app/internal/database/migrations ./migrations -COPY entrypoint.sh ./entrypoint.sh RUN printf '%s\n' '#!/bin/sh' 'set -e' 'exec /app/user_admin "$@"' > /app/create-user \ && chmod +x /app/create-user EXPOSE 3000 -ENTRYPOINT ["./entrypoint.sh"] +ENTRYPOINT ["/app/main_server"]