🍻 Stupid ARM image failing to build on Docker Hub

This commit is contained in:
Alicia Sykes 2021-08-06 22:13:34 +01:00
parent 9e3d728768
commit 8ad600ec70
1 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,6 @@
FROM arm32v7/node:latest FROM alpine:3.8
RUN apk add --no-cache nodejs yarn --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community
# Define some ENV Vars # Define some ENV Vars
ENV PORT 80 ENV PORT 80
@ -12,20 +14,20 @@ WORKDIR ${DIRECTORY}
COPY package.json ./ COPY package.json ./
COPY yarn.lock ./ COPY yarn.lock ./
# Install dependencies # Install project dependencies
RUN yarn RUN yarn
# Copy over all project files and folders to the working directory # Copy over all project files and folders to the working directory
COPY . . COPY . .
# Build Dashy for production # Build initial app for production
RUN yarn build RUN yarn build
# Expose users port # Expose given port
EXPOSE ${PORT} EXPOSE ${PORT}
# Finally, run start command to serve up the built application # Finally, run start command to serve up the built application
CMD [ "yarn", "build-and-start"] CMD [ "yarn", "build-and-start"]
# Enable Docker healthcecks, to ensure Dashy is running correctly # Run simple healthchecks every 5 mins, to check the Dashy's everythings great
HEALTHCHECK --interval=5m --timeout=2s --start-period=30s CMD yarn health-check HEALTHCHECK --interval=5m --timeout=2s --start-period=30s CMD yarn health-check