Skip to content

Instantly share code, notes, and snippets.

View gippy's full-sized avatar

Jaroslav Hejlek gippy

View GitHub Profile
@gippy
gippy / Dockerfile
Last active December 5, 2018 15:05
Test of Actor input schema
# 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