Files
discord-analyst/Dockerfile
T
2021-03-16 12:11:00 +01:00

16 lines
269 B
Docker
Executable File

FROM python
# Create app directory
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt
RUN mkdir logs && touch logs/guilds.log && ln -s logs/guilds.log guilds.log
# Bundle app source
COPY . .
CMD [ "sh", "-c", "python src/main.py" ]