Compare commits
No commits in common. "9be370e7d98c39fb7fcdb2be529352123db59e19" and "0c9fc197299bcdce47dc7128759afa274417ad4e" have entirely different histories.
9be370e7d9
...
0c9fc19729
@ -1,2 +0,0 @@
|
|||||||
node_modules
|
|
||||||
npm-debug.log
|
|
17
Dockerfile
17
Dockerfile
@ -1,17 +0,0 @@
|
|||||||
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" ]
|
|
@ -31,8 +31,8 @@ table
|
|||||||
width: 100%
|
width: 100%
|
||||||
max-height: 100%
|
max-height: 100%
|
||||||
// Add blur effect
|
// Add blur effect
|
||||||
filter: blur(5px) grayscale(30%) brightness(95%)
|
filter: blur(5px) grayscale(30%) brightness(85%)
|
||||||
-webkit-filter: blur(5px) grayscale(30%) brightness(95%)
|
-webkit-filter: blur(5px) grayscale(30%) brightness(85%)
|
||||||
|
|
||||||
#main-container
|
#main-container
|
||||||
max-width: 1050px
|
max-width: 1050px
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
docker build -t minecraft-website .
|
|
@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
docker run -d --rm -p 3000:3000 -v "$(pwd)":/usr/src/minecraft-website --name minecraft-website minecraft-website
|
|
Loading…
Reference in New Issue
Block a user