mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-09 22:44:44 +00:00
f74b3ccd86
move requirements.txt to .devcontainer/
6 lines
155 B
Docker
6 lines
155 B
Docker
FROM python:slim
|
|
WORKDIR /
|
|
RUN apt-get -y update; apt-get -y upgrade
|
|
RUN apt-get -y install git
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt |