mirror of
https://github.com/FlipsideCrypto/badger.git
synced 2026-02-06 10:57:46 +00:00
6 lines
131 B
Docker
6 lines
131 B
Docker
FROM python:3.9
|
|
ENV PYTHONUNBUFFERED=1
|
|
WORKDIR /code
|
|
COPY requirements.txt /code/
|
|
RUN pip install -r requirements.txt
|
|
COPY . /code/ |