FROM alpine:latest as base WORKDIR /app COPY . . RUN chmod -R -x+X . RUN ls -l FROM lipanski/docker-static-website:latest EXPOSE 3000 COPY --from=base /app .