0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 17:24:15 +01:00
posthog/preview.Dockerfile

55 lines
2.2 KiB
Docker
Raw Normal View History

2020-02-08 20:06:46 +01:00
FROM python:3.8-slim
2020-02-05 18:51:41 +01:00
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
2020-02-08 20:06:46 +01:00
RUN apt-get update && apt-get install -y --no-install-recommends gnupg \
2020-02-08 20:59:20 +01:00
&& apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 \
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
&& apt-get update && apt-get install -y --no-install-recommends \
2020-02-08 20:06:46 +01:00
postgresql \
&& apt-get purge -y gnupg \
2020-02-08 20:06:46 +01:00
&& rm -rf /var/lib/apt/lists/*
# START POSTGRES
# Run the next command as the ``postgres`` user created by the ``postgres-9.3`` package when it was ``apt-get installed``
USER postgres
# Create a PostgreSQL role named ``docker`` with ``docker`` as the password and
# then create a database `docker` owned by the ``docker`` role.
RUN /etc/init.d/postgresql start &&\
psql --command "CREATE USER posthog WITH SUPERUSER PASSWORD 'posthog';" &&\
createdb posthog
# END POSGRES
USER root
2020-02-05 18:51:41 +01:00
COPY requirements.txt /code/
# install dependencies but ignore any we don't need for dev environment
2020-02-10 00:20:11 +01:00
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 pip -y \
&& rm -rf /usr/local/lib/python3.8/site-packages/numpy/core/tests \
&& rm -rf /usr/local/lib/python3.8/site-packages/pandas/tests
2020-02-08 20:06:46 +01:00
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 \
2020-02-08 20:59:20 +01:00
&& npm install \
&& npm cache clean --force \
&& npm run build \
&& apt-get purge -y nodejs curl \
2020-02-08 20:06:46 +01:00
&& rm -rf node_modules \
&& rm -rf /var/lib/apt/lists/* \
2020-02-10 00:20:11 +01:00
&& rm -rf .cache \
&& rm -rf frontend/dist/*.map
2020-02-08 20:06:46 +01:00
COPY . /code/
RUN /etc/init.d/postgresql start\
&& DATABASE_URL=postgres://posthog:posthog@localhost:5432/posthog python manage.py migrate\
&& /etc/init.d/postgresql stop
2020-02-08 20:06:46 +01:00
VOLUME /var/lib/postgresql
EXPOSE 8000
2020-02-08 20:06:46 +01:00
ENTRYPOINT ["./bin/docker-preview"]