Add a sample Dockerfile.
All checks were successful
semver Build semver has succeeded
build-homepage Build build-homepage has succeeded

This commit is contained in:
Tom Alexander
2023-07-08 23:01:12 -04:00
commit dea76746a6
2 changed files with 69 additions and 0 deletions

6
docker/server/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM harbor.fizz.buzz/dockerhub/library/python:3.9
RUN useradd -m -g nogroup server
USER server
CMD ["python", "-c", "print('worked')"]