mirror of
https://github.com/davidjohnbarton/crawler-google-places.git
synced 2025-12-12 16:38:45 +00:00
Added Dockerfile
This commit is contained in:
parent
c878cd6a78
commit
cea93bc74e
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
FROM apify/actor-node-chrome
|
||||
|
||||
# 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" ]
|
||||
Loading…
Reference in New Issue
Block a user