diff --git a/dockerfile b/dockerfile index 10cd4b3..5dca9ea 100644 --- a/dockerfile +++ b/dockerfile @@ -4,6 +4,7 @@ FROM node:14.16.0-alpine ENV XBROWSERSYNC_API_VERSION 1.1.13 WORKDIR /usr/src/api +COPY settings.json /usr/src/api/config/settings.json # Download release and unpack RUN wget -q -O release.tar.gz https://github.com/xBrowserSync/api/archive/v$XBROWSERSYNC_API_VERSION.tar.gz \ @@ -17,4 +18,4 @@ RUN npm install --only=production # Expose port and start api EXPOSE 8080 -CMD [ "node", "dist/api.js"] \ No newline at end of file +CMD [ "node", "dist/api.js"]