Last active
September 12, 2017 06:10
-
-
Save ecliptik/995f318033d1fc395999d84cd4304cc1 to your computer and use it in GitHub Desktop.
Dockerfile for aci-connector-k8s armhf image
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
### Base Image | |
# Setup up a base image to use in Build and Runtime images | |
FROM ecliptik/node:8.4.0-alpine-armhf AS base | |
WORKDIR /app | |
COPY package.json . | |
### Build Image | |
# Installs build dependencies and npm packages | |
# Creates artifacts to copy into Runtime image | |
FROM base AS build | |
# Install build OS packages | |
RUN set -ex && \ | |
buildDeps=' \ | |
make \ | |
gcc \ | |
g++ \ | |
python \ | |
py-pip \ | |
curl \ | |
openssl \ | |
' && \ | |
apk add --no-cache \ | |
--virtual .build-deps $buildDeps | |
#Copy application into build image | |
COPY . . | |
# Install npm packages | |
RUN npm install -g | |
RUN npm install --silent --save-dev -g \ | |
gulp-cli \ | |
typescript | |
# Compile typescript sources to javascript artifacts | |
RUN tsc --target es5 connector.ts | |
### Runtime Image | |
# Copy artifacts from Build image and setups up entrypoint/cmd to run app | |
FROM base AS runtime | |
# Copy artifacts from Build Image | |
COPY --from=build /app/node_modules ./node_modules | |
COPY --from=build /app/*.js ./ | |
COPY --from=build /app/LICENSE ./ | |
# Runtime command | |
ENTRYPOINT ["node"] | |
CMD ["connector.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment