mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
15 lines
232 B
Docker
15 lines
232 B
Docker
|
FROM python:3.9
|
||
|
|
||
|
COPY requirements3.txt /tmp/requirements3.txt
|
||
|
|
||
|
RUN \
|
||
|
pip3 install -r /tmp/requirements3.txt
|
||
|
|
||
|
RUN \
|
||
|
apt-get update && \
|
||
|
apt-get install -y faketime
|
||
|
|
||
|
RUN useradd --shell /bin/bash sandbox
|
||
|
USER sandbox
|
||
|
WORKDIR /
|