mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-03 04:45:31 -04:00
* modified the check if Anthias is updated or not * added manual upgrade instructions in the Upgrade Anthias section
17 lines
385 B
Docker
17 lines
385 B
Docker
# vim: ft=dockerfile
|
|
|
|
COPY requirements/requirements.txt /tmp/requirements.txt
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
pip3 install -r /tmp/requirements.txt
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
COPY . /usr/src/app/
|
|
WORKDIR /usr/src/app
|
|
|
|
ENV GIT_HASH=$GIT_HASH
|
|
ENV GIT_SHORT_HASH=$GIT_SHORT_HASH
|
|
ENV GIT_BRANCH=$GIT_BRANCH
|
|
ENV DEVICE_TYPE=$BOARD
|
|
|
|
CMD ["bash", "bin/start_server.sh"]
|