1
0
Fork 0
mirror of https://github.com/imtbl/hydrus-server-docker synced 2024-05-16 02:23:32 +12:00

feat: Reduce image size

This commit is contained in:
Michael Serajnik 2018-12-05 23:57:50 +01:00
parent 194b7064ec
commit ceba00c61a
2 changed files with 3 additions and 1 deletions

View file

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
+ Updated hydrus server version
+ Reduced image size
## [1.1.0] - 2018-12-02

View file

@ -27,7 +27,8 @@ RUN apt-get update && \
rm $(ls | grep "Linux.-.Executable.tar.gz") && \
chown -R hydrus:hydrus /usr/src/app && \
mkdir /data && chown -R hydrus:hydrus /data && \
apt-get remove ca-certificates curl wget -y
apt-get remove ca-certificates curl wget -y && \
apt-get autoremove -y
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint
RUN chmod +x /usr/local/bin/docker-entrypoint