diff --git a/.dockerignore b/.dockerignore index 1691176..1a3442a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,6 +1,11 @@ node_modules/ +.github/ +.git/ .vscode/ assets/ config.*.js docker-compose.*.yml -output/ \ No newline at end of file +docker-compose.yml +output/ +LICENSE +*.md \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 7b19ed5..45d25b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY package*.json ./ RUN npm ci -COPY . . +COPY *.js ./ EXPOSE 5000