diff --git a/gitea/Dockerfile b/gitea/Dockerfile index 954b12e..28b5e41 100644 --- a/gitea/Dockerfile +++ b/gitea/Dockerfile @@ -9,7 +9,6 @@ RUN addgroup -S -g 1000 gitea && \ RUN apk add --no-cache \ git-lfs \ openssh-keygen \ - curl \ bash &&\ apk add gitea --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community/ && \ mkdir /var/cache/gitea && \ @@ -19,11 +18,9 @@ RUN apk add --no-cache \ EXPOSE 22 3000 -COPY start.sh / -RUN chmod +x /start.sh + USER gitea:gitea -# ENTRYPOINT ["/usr/bin/gitea"] -ENTRYPOINT ["./start.sh"] +ENTRYPOINT ["/usr/bin/gitea"] -# CMD ["web", "-c", "/data/app.ini"] +CMD ["web", "-c", "/data/app.ini"] \ No newline at end of file