mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
Basic user page completed UI color scheme and css changes Now stores and uses blurred image hashes for loading item images Broke auto init DB somewhere along the lines
15 lines
142 B
Docker
15 lines
142 B
Docker
FROM node:slim
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY ./ ./
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["npm", "run", "start-app"]
|
|
|