This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Here you choose the base Docker image for the actor. Apify provides the following images: | |
# apify/actor-node-basic | |
# apify/actor-node-chrome | |
# apify/actor-node-puppeteer | |
# However, you can use any other image from Docker Hub. | |
# For more information, see https://apify.com/docs/actor#base-images | |
FROM apify/actor-node-basic | |
# Copy all files and directories from the directory to the Docker image | |
COPY . ./ |