9 lines
233 B
Docker
9 lines
233 B
Docker
FROM gitea/gitea:latest
|
|
USER root
|
|
RUN apk add --no-cache git-lfs && \
|
|
mkdir -p /.s6-svscan/gitea/log && \
|
|
mkdir -p /var/run/s6 && \
|
|
touch /.s6-svscan/lock && \
|
|
chmod -R 777 /.s6-svscan && \
|
|
chmod 777 /var/run/s6
|
|
|