Update dockerfiles

This commit is contained in:
Cadence Ember 2020-07-08 18:12:44 +12:00
parent 529a75437a
commit 84cd04dae0
No known key found for this signature in database
GPG Key ID: 128B99B1B74A6412
3 changed files with 41 additions and 11 deletions

View File

@ -1 +1,27 @@
# Editor stuff
.vscode
# Test stuff
test
coverage
.nyc_output
src/lib/utils/saved_requests/files
# Database stuff
db
*.log
*.csv
# Personal stuff
notes.txt
config.js
# Cached stuff
db
node_modules
# Stuff Docker doesn't need
.git
art
*.log
*.csv

View File

@ -1,10 +1,11 @@
FROM node:12.18.1-alpine as build
FROM node:14.5.0-alpine as build
RUN apk --no-cache add git python3 make g++
WORKDIR /app
COPY . .
COPY ./.config.js.default ./config.js
RUN npm install --no-optional
FROM node:12.18.1-alpine as app
FROM node:14.5.0-alpine as app
WORKDIR /app
COPY --from=build /app /app
EXPOSE 10407

View File

@ -1,9 +1,12 @@
bibliogram:
build: .
volumes:
- ./config.js:/app/config.js:ro
- ./db:/app/db
ports:
- "10407:10407"
restart:
unless-stopped
version: '3'
volumes:
db:
services:
bibliogram:
build: .
image: cloudrac3r/bibliogram
volumes:
- db:/app/db
ports:
- 10407:10407
restart: unless-stopped