mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2024-12-22 18:55:33 +00:00
5151d67dff
* **Dockerfile** - Add a `Dockerfile` to set up a Node.js environment - Add instructions to copy `mkbsd.js` and install dependencies - Add a command to run `mkbsd.js` * **README.md** - Add a section for running the downloads via Docker - Include instructions to build and run the Docker container
18 lines
409 B
Docker
18 lines
409 B
Docker
# Use the official Node.js image as the base image
|
|
FROM node:14
|
|
|
|
# Set the working directory inside the container
|
|
WORKDIR /app
|
|
|
|
# Copy the package.json and package-lock.json files to the working directory
|
|
COPY package*.json ./
|
|
|
|
# Install the dependencies
|
|
RUN npm install
|
|
|
|
# Copy the rest of the application code to the working directory
|
|
COPY . .
|
|
|
|
# Command to run the mkbsd.js script
|
|
CMD ["node", "mkbsd.js"]
|