mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
5dfa9a542c
Summary: Replaced mentions of Python 3.9 with 3.11 Test Plan: this Reviewers: paulfitz, georgegevoian Reviewed By: paulfitz, georgegevoian Subscribers: dsagal, georgegevoian, paulfitz Differential Revision: https://phab.getgrist.com/D3980
15 lines
233 B
Docker
15 lines
233 B
Docker
FROM python:3.11
|
|
|
|
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 /
|