Compare commits

..

No commits in common. "9be370e7d98c39fb7fcdb2be529352123db59e19" and "0c9fc197299bcdce47dc7128759afa274417ad4e" have entirely different histories.

5 changed files with 2 additions and 27 deletions

View File

@ -1,2 +0,0 @@
node_modules
npm-debug.log

View File

@ -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" ]

View File

@ -31,8 +31,8 @@ table
width: 100%
max-height: 100%
// Add blur effect
filter: blur(5px) grayscale(30%) brightness(95%)
-webkit-filter: blur(5px) grayscale(30%) brightness(95%)
filter: blur(5px) grayscale(30%) brightness(85%)
-webkit-filter: blur(5px) grayscale(30%) brightness(85%)
#main-container
max-width: 1050px

View File

@ -1,3 +0,0 @@
#!/bin/sh
docker build -t minecraft-website .

View File

@ -1,3 +0,0 @@
#!/bin/sh
docker run -d --rm -p 3000:3000 -v "$(pwd)":/usr/src/minecraft-website --name minecraft-website minecraft-website