mirror of
https://github.com/elyby/chrly.git
synced 2024-12-24 14:09:56 +05:30
10 lines
225 B
Docker
10 lines
225 B
Docker
|
FROM alpine:3.6
|
||
|
|
||
|
COPY docker/docker-entrypoint.sh /usr/local/bin/
|
||
|
COPY docker/config.dist.yml /usr/local/etc/minecraft-skinsystem/
|
||
|
|
||
|
COPY minecraft-skinsystem /usr/local/bin/
|
||
|
|
||
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
||
|
CMD ["serve"]
|