mirror of
https://github.com/simonw/datasette.git
synced 2026-06-06 17:16:57 +02:00
6 lines
112 B
Text
6 lines
112 B
Text
|
|
FROM python:3
|
||
|
|
COPY . /app
|
||
|
|
WORKDIR /app
|
||
|
|
RUN pip install -r requirements.txt
|
||
|
|
EXPOSE 8006
|
||
|
|
CMD ["python", "app.py"]
|