Mercurial > Pritunl-Fake-API
comparison docker/Dockerfile @ 0:b51518614818 default tip
New Files
author | Pluto <meokcin@gmail.com> |
---|---|
date | Tue, 03 Sep 2024 15:57:25 +0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b51518614818 |
---|---|
1 FROM goofball222/pritunl:latest | |
2 | |
3 ARG API_SERVER_DOMAIN | |
4 ENV API_SERVER_DOMAIN $API_SERVER_DOMAIN | |
5 | |
6 # Yes, you will need to copy it over into the build context... | |
7 COPY setup.py . | |
8 | |
9 RUN chmod +x setup.py; python3 -u setup.py --install --api-server ${API_SERVER_DOMAIN:-}; rm setup.py |