diff --git a/cryptide_project/server/socket_io/Dockerfile b/cryptide_project/server/socket_io/Dockerfile new file mode 100644 index 0000000..7e5ab83 --- /dev/null +++ b/cryptide_project/server/socket_io/Dockerfile @@ -0,0 +1,20 @@ +# Use the official Node.js image +FROM node:14 + +# Set the working directory in the container +WORKDIR /usr/src/app + +# Copy package.json and package-lock.json to the working directory +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy the rest of the application code +COPY ./server/socket_io/server.js . + +# Expose the port that the application will run on +EXPOSE 3002 + +# Command to run the application +CMD ["node", "server.js"]