diff --git a/Dockerfile-debian-bullseye b/Dockerfile-debian-bullseye deleted file mode 100644 index 6651ce7a187751d96d6082d386546855b84384c9..0000000000000000000000000000000000000000 --- a/Dockerfile-debian-bullseye +++ /dev/null @@ -1,12 +0,0 @@ -# docker build --tag sfconservancy.org-bullseye - < Dockerfile-debian-bullseye -# docker run --tty --interactive --rm=true --publish=8000:8000 --mount type=bind,source=$(pwd),target=/var/www/website --mount type=bind,source=$(pwd)/conservancy-website.sqlite3,target=/var/lib/www/database/conservancy-website.sqlite3 sfconservancy.org-bullseye:latest - -ARG DEBIAN_FRONTEND=noninteractive - -FROM debian:bullseye -RUN apt-get update && apt-get upgrade -y -RUN apt-get install -y python3 python3-pip python3-wheel sqlite3 -RUN apt-get install -y python3-django python3-bs4 python3-django-countries -RUN python3 -m pip freeze -WORKDIR /var/www/website/www -ENTRYPOINT ["python3", "/var/www/website/www/manage.py", "runserver", "0.0.0.0:8000"]