Browse Source
Use slim version of docker container
This massively reduces the size of the final container
pull/563/head
Jake Howard
3 years ago
No known key found for this signature in database
GPG Key ID: 57AFB45680EDD477
1 changed files with
1 additions and
2 deletions
-
docker/Dockerfile
|
|
@ -1,4 +1,4 @@ |
|
|
|
FROM python:3.9 |
|
|
|
FROM python:3.9-slim |
|
|
|
|
|
|
|
RUN useradd --system hc |
|
|
|
ENV PYTHONUNBUFFERED=1 |
|
|
@ -20,4 +20,3 @@ RUN \ |
|
|
|
USER hc |
|
|
|
|
|
|
|
CMD [ "uwsgi", "/opt/healthchecks/docker/uwsgi.ini"] |
|
|
|
|