forked from OpenWF/SpaceNinjaServer
Some Docker stuff I updated ~~but keeping WIP for now, until I know whether this breaks or not, if someone could test it for me. Will close the PR if it doesn't, cuz if I cannot even run it on my machine (Docker only crashing on my end in general), then its pointless for me to mess with it.~~ Reviewed-on: OpenWF/SpaceNinjaServer#1961 Co-authored-by: Animan8000 <animan8000@noreply.localhost> Co-committed-by: Animan8000 <animan8000@noreply.localhost>
50 lines
1.6 KiB
Docker
50 lines
1.6 KiB
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_TUTORIAL=false
|
|
ENV APP_SKIP_ALL_DIALOGUE=false
|
|
ENV APP_UNLOCK_ALL_SCANS=false
|
|
ENV APP_UNLOCK_ALL_MISSIONS=false
|
|
ENV APP_INFINITE_CREDITS=false
|
|
ENV APP_INFINITE_PLATINUM=false
|
|
ENV APP_INFINITE_ENDO=false
|
|
ENV APP_INFINITE_REGAL_AYA=false
|
|
ENV APP_INFINITE_HELMINTH_MATERIALS=false
|
|
ENV APP_DONT_SUBTRACT_CONSUMABLES=false
|
|
ENV APP_UNLOCK_ALL_SHIP_FEATURES=false
|
|
ENV APP_UNLOCK_ALL_SHIP_DECORATIONS=false
|
|
ENV APP_UNLOCK_ALL_FLAVOUR_ITEMS=false
|
|
ENV APP_UNLOCK_ALL_SKINS=false
|
|
ENV APP_UNLOCK_ALL_CAPTURA_SCENES=false
|
|
ENV APP_UNIVERSAL_POLARITY_EVERYWHERE=false
|
|
ENV APP_UNLOCK_DOUBLE_CAPACITY_POTATOES_EVERYWHERE=false
|
|
ENV APP_UNLOCK_EXILUS_EVERYWHERE=false
|
|
ENV APP_UNLOCK_ARCANES_EVERYWHERE=false
|
|
ENV APP_NO_DAILY_FOCUS_LIMIT=false
|
|
ENV APP_NO_ARGON_CRYSTAL_DECAY=false
|
|
ENV APP_NO_MASTERY_RANK_UP_COOLDOWN=false
|
|
ENV APP_NO_VENDOR_PURCHASE_LIMITS=true
|
|
ENV APP_NO_DEATH_MARKS=false
|
|
ENV APP_NO_KIM_COOLDOWNS=false
|
|
ENV APP_INSTANT_RESOURCE_EXTRACTOR_DRONES=false
|
|
ENV APP_NO_RESOURCE_EXTRACTOR_DRONES_DAMAGE=false
|
|
ENV APP_SKIP_CLAN_KEY_CRAFTING=false
|
|
ENV APP_NO_DOJO_ROOM_BUILD_STAGE=false
|
|
ENV APP_NO_DECO_BUILD_STAGE=false
|
|
ENV APP_FAST_DOJO_ROOM_DESTRUCTION=false
|
|
ENV APP_NO_DOJO_RESEARCH_COSTS=false
|
|
ENV APP_NO_DOJO_RESEARCH_TIME=false
|
|
ENV APP_FAST_CLAN_ASCENSION=false
|
|
ENV APP_SPOOF_MASTERY_RANK=-1
|
|
|
|
RUN apk add --no-cache bash sed wget jq
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|