Files
zkldi_Tachi/Dockerfile.bootstrap
T
2023-03-31 18:02:17 +01:00

15 lines
508 B
Docker

# Yes, I've made an entire docker container just to run a bash script
# instead of rewriting the script in a ~~real~~ cross-platform scripting language.
# This docker container **depends** on an external volume being mounted
# (see how it's used in docker-compose-dev.yml)
# and *intentionally* mutates state outside of its container.
# I really do not care.
# Want it better? Do it yourself.
FROM node:16 as base
RUN npm install --silent -g pnpm@7.20.0
WORKDIR /app
CMD ["bash", "_scripts/bootstrap.sh"]