Added Dockerfile and scripts to build and run a docker image for development
This commit is contained in:
parent
0c9fc19729
commit
f018204482
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
node_modules
|
||||||
|
npm-debug.log
|
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
FROM node:16.8
|
||||||
|
|
||||||
|
WORKDIR /usr/src/minecraft-website
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
|
||||||
|
RUN npm install
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN npm run gulp sass
|
||||||
|
|
||||||
|
# expose node_modules as a volume so it stays within the container
|
||||||
|
VOLUME node_modules
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
CMD [ "npm", "run", "server" ]
|
3
bin/docker-build-dev.sh
Executable file
3
bin/docker-build-dev.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
docker build -t minecraft-website .
|
3
bin/docker-run-dev.sh
Executable file
3
bin/docker-run-dev.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
docker run -d --rm -p 3000:3000 --name minecraft-website minecraft-website
|
Loading…
Reference in New Issue
Block a user