mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
25 lines
912 B
Docker
25 lines
912 B
Docker
FROM python:3.8-slim
|
|
ENV PYTHONUNBUFFERED 1
|
|
RUN mkdir /code
|
|
WORKDIR /code
|
|
|
|
COPY requirements.txt /code/
|
|
# install dependencies but ignore any we don't need for dev environment
|
|
RUN pip install $(grep -ivE "ipdb|mypy|ipython|ipdb|pip|djangorestframework-stubs|django-stubs|ipython-genutils|mypy-extensions|Pygments|typed-ast|jedi" requirements.txt) --no-cache-dir --compile && pip uninstall ipython-genutils -y
|
|
COPY frontend/ /code/frontend
|
|
RUN cd frontend \
|
|
&& apt-get update && apt-get install -y --no-install-recommends curl \
|
|
&& curl -sL https://deb.nodesource.com/setup_12.x | bash - \
|
|
&& apt-get install nodejs -y --no-install-recommends \
|
|
&& npm install \
|
|
&& npm cache clean --force \
|
|
&& npm run build \
|
|
&& apt-get purge -y nodejs curl \
|
|
&& rm -rf node_modules \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -rf .cache
|
|
|
|
COPY . /code/
|
|
|
|
EXPOSE 8000
|
|
ENTRYPOINT ["./bin/docker"] |