mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 17:24:15 +01:00
7 lines
145 B
Docker
7 lines
145 B
Docker
|
FROM python:3
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
RUN mkdir /code
|
||
|
WORKDIR /code
|
||
|
COPY requirements.txt /code/
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY . /code/
|