Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
fix: non-optional highlights, node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmmy committed Nov 18, 2022
1 parent bd1564c commit 31bbba1
Show file tree
Hide file tree
Showing 4 changed files with 6,079 additions and 2,563 deletions.
17 changes: 17 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
node_modules/
.idea/
config.json
stats.json
nonces.json
sessions
/custom-name.js
/*.txt
/imgs/
/public/*
!/public/poop.png
!/public/jquery.mobile.custom.min.js
!/public/service-worker.js
!/public/poop192.png
!/public/poop512.png
!/public/poop96.png
!/public/poop32.png
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:16-alpine
FROM node:12-alpine
WORKDIR /usr/src/app

COPY package*.json ./
RUN apk add ca-certificates
COPY package.json package-lock.json ./
RUN apk add ca-certificates g++ make python3
RUN npm install --legacy-peer-deps
RUN npm install highlights language-lua

Expand Down
Loading

0 comments on commit 31bbba1

Please sign in to comment.