11 lines
279 B
Docker
11 lines
279 B
Docker
FROM gitea/gitea:latest
|
|
USER root
|
|
RUN apk add --no-cache git-lfs && \
|
|
mkdir -p /.s6-svscan && \
|
|
mkdir -p /var/run/s6 && \
|
|
chmod 777 /.s6-svscan && \
|
|
chmod 777 /var/run/s6 && \
|
|
touch /.s6-svscan/lock && \
|
|
chmod 666 /.s6-svscan/lock
|
|
# Stay as root for now
|
|
|