This file contains 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
# Image is based on Node.js 8.X | |
FROM node:8-alpine | |
LABEL maintainer="[email protected]" Description="Image is used to run basic Apify acts" | |
# Remove yarn, it's not needed | |
RUN rm -rf /opt/yarn /usr/local/bin/yarn /usr/local/bin/yarnpkg | |
# Create app directory | |
RUN mkdir -p /usr/src/app |