CoolFace
Apppublic

Moki2004/ResumeBuilder

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile26 linesDownload Raw Back to root
1# Use an official Node.js runtime as the base image2FROM node:143 4# Set the working directory inside the container5WORKDIR /app6 7# Copy package.json and package-lock.json to the working directory8COPY package*.json ./9 10# Install the application dependencies11RUN npm install12 13# Copy the rest of the application code to the working directory14COPY . .15 16# Set the environment variables17 18ENV PDF_SERVICES_CLIENT_ID=85c8c729f8a64332abd236589f997b2b19ENV PDF_SERVICES_CLIENT_SECRET=p8e-C4FxbvRivH-OIq2OLeBDLsCF96nVFHQq20# Expose the ports21 22EXPOSE 786023 24# Define the command to run your Node.js application25CMD ["npm", "run","dev"]26