web-humas-fe/Dockerfile

25 lines
363 B
Docker
Raw Normal View History

2025-02-13 08:39:43 +00:00
FROM node:23.5.0-alpine
ENV PORT 4000
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json package-lock.json ./
COPY vendor/ckeditor5 ./vendor/ckeditor5
# Instal dependensi
2025-02-13 09:50:05 +00:00
RUN npm install -g npm@latest
2026-04-01 08:41:26 +00:00
RUN npm install next --legacy-peer-deps
2025-02-13 09:50:05 +00:00
COPY . /usr/src/app
2025-02-13 08:39:43 +00:00
RUN npm run build
EXPOSE 4000
# Jalankan aplikasi
CMD ["npm", "run", "start"]