mirror of
https://github.com/slynn1324/tinypin
synced 2026-05-03 17:40:28 +00:00
12 lines
240 B
Docker
12 lines
240 B
Docker
FROM node:alpine3.12
|
|
|
|
COPY . /tinypin
|
|
|
|
WORKDIR /tinypin
|
|
|
|
RUN apk add build-base python3 && npm install --verbose && apk del build-base python3
|
|
|
|
RUN npm install
|
|
|
|
ENTRYPOINT ["sh", "-c" , "node server.js -i /data/images -d /data/tinypin.db"]
|