Reviewed-on: #1411 Reviewed-by: Sainan <sainan@calamity.inc> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
27 lines
700 B
Docker
27 lines
700 B
Docker
FROM node:18-alpine3.19
|
|
|
|
ENV APP_MONGODB_URL=mongodb://mongodb:27017/openWF
|
|
ENV APP_MY_ADDRESS=localhost
|
|
ENV APP_HTTP_PORT=80
|
|
ENV APP_HTTPS_PORT=443
|
|
ENV APP_AUTO_CREATE_ACCOUNT=true
|
|
ENV APP_SKIP_STORY_MODE_CHOICE=true
|
|
ENV APP_SKIP_TUTORIAL=true
|
|
ENV APP_SKIP_ALL_DIALOGUE=true
|
|
ENV APP_UNLOCK_ALL_SCANS=true
|
|
ENV APP_UNLOCK_ALL_MISSIONS=true
|
|
ENV APP_INFINITE_RESOURCES=true
|
|
ENV APP_UNLOCK_ALL_SHIP_FEATURES=true
|
|
ENV APP_UNLOCK_ALL_SHIP_DECORATIONS=true
|
|
ENV APP_UNLOCK_ALL_FLAVOUR_ITEMS=true
|
|
ENV APP_UNLOCK_ALL_SKINS=true
|
|
ENV APP_UNIVERSAL_POLARITY_EVERYWHERE=true
|
|
ENV APP_SPOOF_MASTERY_RANK=-1
|
|
|
|
RUN apk add --no-cache bash sed wget jq
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|