ihm_client/Dockerfile
4NK CI Bot 662b04bfdd
Some checks failed
Build and Push Docker image (ext) / docker (push) Failing after 33s
ci: docker_tag=ext - Optimize Dockerfile to reduce image size (remove dev tools)
2025-09-21 18:09:33 +00:00

38 lines
903 B
Docker
Executable File

# syntax=docker/dockerfile:1.4
FROM node:20-alpine
WORKDIR /app
# Installation des dépendances minimales nécessaires
RUN apk update && apk upgrade && apk add --no-cache \
git \
&& rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
# Copy project files
COPY . .
# Ensure pkg directory exists and has correct permissions
RUN mkdir -p pkg && chmod -R 755 pkg
# Verify pkg files are present
RUN ls -la pkg/ && file pkg/sdk_client_bg.wasm
# Copy the provided prebuilt WASM package (ESM)
# The directory pkg is provided in the build context
# and already contains sdk_client.js (ES module) and wasm
# so no compilation is required here.
# Installation des dépendances Node.js
RUN npm install
# Copie de la configuration nginx
COPY nginx.dev.conf /etc/nginx/http.d/default.conf
# Script de démarrage
COPY start-dev.sh /start-dev.sh
RUN chmod +x /start-dev.sh
EXPOSE 3003 80
CMD ["/start-dev.sh"]