32 lines
904 B
Plaintext
32 lines
904 B
Plaintext
# This dockerfile is to turn .output into a docker image
|
|
# You still need to install the project on your machine and build it.
|
|
# Only then you run this docker file
|
|
|
|
# This project by default uses pnpm.
|
|
# If you wish to use npm, delete "pnpm-lock.yaml" first.
|
|
|
|
# 1. pnpm (or npm) i # If you get gnu problems, use --force
|
|
# 2. pnpm (or npm) run build # Sit back while it compiles
|
|
# 3. sudo docker build . -t myapp:latest (replace 'myapp' to whatever tag you wanna give your image)
|
|
|
|
# You should have the image now !
|
|
# Now you just need to create the container
|
|
|
|
# Here is an example command for creating a container
|
|
# sudo docker run -d --name myappcontainer --network host -e PORT=3001 myapp:latest
|
|
|
|
FROM node:22-alpine
|
|
WORKDIR /app
|
|
|
|
# Copy the build's result
|
|
COPY .output/ .
|
|
|
|
# Change the port and host
|
|
ENV PORT=3000
|
|
ENV HOST=0.0.0.0
|
|
|
|
EXPOSE 3000
|
|
|
|
#VOLUME [ "/app" ]
|
|
|
|
CMD ["node", "/app/server/index.mjs"] |