mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
d8cde40b49
* Add curl to brickfix dockerfile. * Add curl to AccountManager docker. * Fix issue preventing container from building.
15 lines
348 B
Docker
15 lines
348 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10-alpine3.14
|
|
|
|
WORKDIR /usr/local/share/AccountManager
|
|
|
|
COPY ./thirdparty/AccountManager .
|
|
|
|
ADD docker/credentials_example.py credentials.py
|
|
ADD docker/resources_example.py resources.py
|
|
|
|
RUN apk add curl libffi-dev build-base --no-cache && pip3 install -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
CMD python3 app.py
|