mirror of
https://github.com/shadoll/sLogos.git
synced 2025-12-20 06:30:00 +00:00
15 lines
249 B
Docker
15 lines
249 B
Docker
FROM node:slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install || true
|
|
|
|
# Only copy minimal files for initial build, source will be mounted
|
|
COPY public/index.html public/global.css ./public/
|
|
|
|
EXPOSE 5000
|
|
EXPOSE 35729
|
|
|
|
CMD ["npm", "run", "dev"]
|