diff --git a/projects/tentacles/Dockerfile b/projects/tentacles/Dockerfile index 872b1b1..82955f3 100644 --- a/projects/tentacles/Dockerfile +++ b/projects/tentacles/Dockerfile @@ -1,7 +1,8 @@ -FROM library/python:3.11 +# We need to use Sid to get py3.11 and a new enough SQLite3 for 'RETURNING' syntax +FROM debian:sid MAINTAINER Reid 'arrdem' McKenzie -# RUN pip install --upgrade pip +RUN apt-get update && apt-get install -y python3 sqlite3 RUN useradd -d /app app RUN mkdir -p /app /data