diff options
| author | Bobby <[email protected]> | 2023-11-10 20:00:39 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-11-10 20:00:39 -0500 |
| commit | b04e03a25800327b0ea78fef9fdea89ab4c89e22 (patch) | |
| tree | 02f4a7dbbbeb439c89e49da33d85033b5c807f1d | |
| parent | d0dc6b753489adfa8c9a44c56ab5126c91292178 (diff) | |
| download | thatcomputerscientist-b04e03a25800327b0ea78fef9fdea89ab4c89e22.tar.xz thatcomputerscientist-b04e03a25800327b0ea78fef9fdea89ab4c89e22.zip | |
Update Dockerfile
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 \ |
