Compare commits

..

1 Commits

Author SHA1 Message Date
1f65f6374e fix: removed ln from entrypoint copy
All checks were successful
Gitea/docker-base-images/nginx-routes/pipeline/head This commit looks good
2023-09-02 00:16:48 +03:00

View File

@@ -8,8 +8,7 @@ RUN apt update && \
# Copy entrypoint
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh && \
ln -s /usr/local/bin/docker-entrypoint.sh /
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
# Execute entrypoint
ENTRYPOINT [ "docker-entrypoint.sh" ]