diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 3d7142b..0000000 --- a/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -# Use the official image as a parent image. -FROM node:current-slim - -# Set the working directory. -WORKDIR ./DOCKER - -# Copy the file from your host to your current location. -COPY ./package.json . -COPY ./package-lock.json . -# Run the command inside your image filesystem. -RUN npm install - -# Run the specified command within the container. -CMD [ "npm", "start" ] - -# Copy the rest of your app's source code from your host to your image filesystem. -COPY ./src/ . diff --git a/package.json b/package.json index fe3114e..4b575fe 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "n": "^6.4.0", "pretty-ms": "^6.0.1" }, + "publishConfig": { "registry": "https://npm.pkg.github.com/" }, "devDependencies": {}, "scripts": { "test": "echo \"Error: no test specified\" && exit 1",