This repository has been archived on 2020-10-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
git.autonomic.zone/Dockerfile
T

19 lines
255 B
Docker

FROM gitea/gitea:1.11.3
EXPOSE 3000
COPY . ${WORKDIR}
COPY sbin/* /sbin/
RUN apk --no-cache add \
ca-certificates \
mysql-client \
py-pip
RUN pip install --upgrade pip
RUN pip install --no-cache-dir crudini
ENTRYPOINT ["/sbin/entrypoint.sh"]