This commit is contained in:
Reid 'arrdem' McKenzie 2023-06-03 01:34:28 -06:00
parent aa017aa8c5
commit 764b723254

View file

@ -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 <me@arrdem.com> MAINTAINER Reid 'arrdem' McKenzie <me@arrdem.com>
# RUN pip install --upgrade pip RUN apt-get update && apt-get install -y python3 sqlite3
RUN useradd -d /app app RUN useradd -d /app app
RUN mkdir -p /app /data RUN mkdir -p /app /data