aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-11-10 20:00:39 -0500
committerBobby <[email protected]>2023-11-10 20:00:39 -0500
commitb04e03a25800327b0ea78fef9fdea89ab4c89e22 (patch)
tree02f4a7dbbbeb439c89e49da33d85033b5c807f1d /Dockerfile
parentd0dc6b753489adfa8c9a44c56ab5126c91292178 (diff)
downloadthatcomputerscientist-b04e03a25800327b0ea78fef9fdea89ab4c89e22.tar.xz
thatcomputerscientist-b04e03a25800327b0ea78fef9fdea89ab4c89e22.zip
Update Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 6d2a9ed5..59794d18 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,6 +2,10 @@ ARG PYTHON_VERSION=3.11-slim-bullseye
FROM python:${PYTHON_VERSION} AS base
+RUN ["chmod", "+x", "./entrypoint.sh"]
+
+ENTRYPOINT [ "./entrypoint.sh" ]
+
RUN apt-get update && apt-get install -y \
python3-pip \
python3-venv \