mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 23:30:01 +00:00
18 lines
530 B
Docker
18 lines
530 B
Docker
|
FROM ubuntu:18.04
|
||
|
|
||
|
ENV LANG=en_US.utf-8 LC_ALL=en_US.utf-8 DEBIAN_FRONTEND=noninteractive
|
||
|
RUN apt-get -y update
|
||
|
|
||
|
COPY ./ /nyaa/
|
||
|
RUN cat /nyaa/config.example.py /nyaa/.docker/nyaa-config-partial.py > /nyaa/config.py
|
||
|
|
||
|
# Requirements for running the Flask app
|
||
|
RUN apt-get -y install build-essential git python3 python3-pip libmysqlclient-dev curl
|
||
|
# Helpful stuff for the docker entrypoint.sh script
|
||
|
RUN apt-get -y install mariadb-client netcat
|
||
|
|
||
|
WORKDIR /nyaa
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
CMD ["/nyaa/.docker/entrypoint.sh"]
|