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

24 lines
422 B
Docker
Raw Normal View History

FROM gitea/gitea:1.11.5
2020-03-10 08:35:48 +00:00
2020-03-25 10:41:44 +00:00
EXPOSE 3020
2020-03-23 14:14:51 +00:00
EXPOSE 2222
2020-03-15 11:41:24 +00:00
2020-03-15 08:28:34 +00:00
COPY . ${WORKDIR}
2020-03-15 11:41:24 +00:00
COPY sbin/* /sbin/
2020-04-14 15:38:57 +00:00
RUN apk --no-cache add \
ca-certificates \
mysql-client \
2020-04-24 10:38:54 +00:00
py3-docutils \
2020-04-14 15:38:57 +00:00
py3-pip
2020-03-22 16:54:19 +00:00
2020-04-14 15:38:57 +00:00
RUN pip3 install --upgrade \
pip==20.0.2
2020-03-22 16:41:30 +00:00
2020-03-29 08:00:09 +00:00
# Note(decentral1se): https://github.com/pixelb/crudini/issues/58
2020-04-14 15:38:57 +00:00
RUN pip3 install --no-cache-dir \
2020-04-24 10:39:57 +00:00
"git+http://github.com/pixelb/crudini.git@0.9.3#egg=crudini"
2020-03-17 12:48:16 +00:00
ENTRYPOINT ["/sbin/entrypoint.sh"]