mirror of
https://github.com/davidjohnbarton/crawler-google-places.git
synced 2025-12-12 16:38:45 +00:00
17 lines
379 B
Docker
17 lines
379 B
Docker
FROM apify/actor-node-chrome-xvfb
|
|
|
|
# Copy source code
|
|
COPY . ./
|
|
|
|
# Install default dependencies, print versions of everything
|
|
RUN npm --quiet set progress=false \
|
|
&& npm install --only=prod --no-optional \
|
|
&& echo "Installed NPM packages:" \
|
|
&& npm list \
|
|
&& echo "Node.js version:" \
|
|
&& node --version \
|
|
&& echo "NPM version:" \
|
|
&& npm --version
|
|
|
|
#CMD [ "npm", "start" ]
|