-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile-dev
53 lines (40 loc) · 1.57 KB
/
Dockerfile-dev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM python:3.5
ENV PYTHONUNBUFFERED 1
# Build-time metadata as defined at http://label-schema.org
ARG OPACSSM_BUILD_DATE
ARG OPACSSM_VCS_REF
ARG OPACSSM_WEBAPP_VERSION
ENV OPACSSM_BUILD_DATE ${OPACSSM_BUILD_DATE}
ENV OPACSSM_VCS_REF ${OPACSSM_VCS_REF}
ENV OPACSSM_WEBAPP_VERSION ${OPACSSM_WEBAPP_VERSION}
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="OPACSSM WebApp - development build" \
org.label-schema.description="OPACSSM WebApp main app" \
org.label-schema.url="https://github.com/scieloorg/opac_ssm/" \
org.label-schema.vcs-ref=$OPACSSM_VCS_REF \
org.label-schema.vcs-url="https://github.com/scieloorg/opac_ssm/" \
org.label-schema.vendor="SciELO" \
org.label-schema.version=$OPACSSM_WEBAPP_VERSION \
org.label-schema.schema-version="1.0"
# Requirements have to be pulled and installed here, otherwise caching won't work
COPY ./requirements /requirements
RUN pip install -r /requirements/local.txt \
&& pip install -r /requirements/test.txt \
&& groupadd -r django \
&& useradd -r -g django django
COPY ./entrypoint.sh /entrypoint.sh
COPY ./start-dev.sh /start-dev.sh
COPY ./start-grpc.sh /start-grpc.sh
RUN sed -i 's/\r//' /entrypoint.sh \
&& sed -i 's/\r//' /start-dev.sh \
&& sed -i 's/\r//' /start-grpc.sh \
&& chmod +x /entrypoint.sh \
&& chmod +x /start-dev.sh \
&& chmod +x /start-grpc.sh \
&& chown django /entrypoint.sh \
&& chown django /start-dev.sh \
&& chown django /start-grpc.sh
WORKDIR /app
RUN chown -R django /app
USER django
ENTRYPOINT ["/entrypoint.sh"]