mirror of
https://github.com/michivonah/bbzw-horizon.git
synced 2025-12-22 17:16:27 +01:00
12 lines
No EOL
147 B
Docker
12 lines
No EOL
147 B
Docker
FROM node:22-alpine
|
|
|
|
RUN mkdir app
|
|
WORKDIR /app/
|
|
|
|
COPY git/ .
|
|
|
|
RUN npm install
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD [ "npm", "run", "dev", "--", "--host", "0.0.0.0" ] |