This repository has been archived by the owner on Oct 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
68 lines (52 loc) · 1.57 KB
/
Dockerfile
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# artifacts: false
# platforms: linux/386,linux/amd64
FROM python:3.9.6-slim-bullseye as retroarcher-base
FROM retroarcher-base as retroarcher-build
# install build dependencies
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
build-essential \
nodejs \
npm \
pkg-config \
libopenblas-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# python virtualenv
RUN python -m venv /opt/venv
# use the virtualenv:
ENV PATH="/opt/venv/bin:$PATH"
# setup app directory
WORKDIR /build
COPY . .
# setup python requirements
RUN python -m pip install --no-cache-dir --upgrade pip setuptools wheel && \
python -m pip install --no-cache-dir -r requirements.txt
# compile locales
RUN python scripts/_locale.py --compile
# setup npm and dependencies
RUN npm install && \
mv -f ./node_modules/ ./web/
# compile docs
WORKDIR /build/docs
RUN sphinx-build -M html source build
FROM retroarcher-base as retroarcher
# copy app from builder
COPY --from=retroarcher-build /build/ /app/
# copy python venv
COPY --from=retroarcher-build /opt/venv/ /opt/venv/
# use the venv
ENV PATH="/opt/venv/bin:$PATH"
# site-packages are in /opt/venv/lib/python<version>/site-packages/
# setup remaining env variables
ENV RETROARCHER_DOCKER=True
ENV TZ=UTC
# setup user
RUN groupadd -g 1000 retroarcher && \
useradd -u 1000 -g 1000 retroarcher
# create config directory
RUN mkdir -p /config
VOLUME /config
CMD ["python", "retroarcher.py"]
EXPOSE 9696
HEALTHCHECK --start-period=90s CMD python retroarcher.py --docker_healthcheck || exit 1