Move AccountManager to submodules

This commit is contained in:
Nils Bergmann
2022-01-05 17:32:30 +01:00
parent dc39acaa75
commit 72e2d24c67
3 changed files with 10 additions and 5 deletions

View File

@@ -1,13 +1,14 @@
# syntax=docker/dockerfile:1
FROM python:3.9.9-buster
FROM python:3.10-alpine3.14
WORKDIR /usr/local/share/
RUN git clone https://github.com/DarkflameUniverse/AccountManager
WORKDIR /usr/local/share/AccountManager
COPY ./thirdparty/AccountManager .
WORKDIR AccountManager
ADD docker/credentials_example.py credentials.py
ADD docker/resources_example.py resources.py
RUN pip3 install -r requirements.txt
RUN apk add libffi-dev build-base --no-cache && pip3 install -r requirements.txt
EXPOSE 5000
CMD python3 app.py