-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitHub registry #6
base: propUi
Are you sure you want to change the base?
Conversation
Feature/arm64
@@ -2,6 +2,9 @@ | |||
FROM node:12.7-alpine AS build | |||
WORKDIR /usr/src/app | |||
COPY package.json package-lock.json ./ | |||
RUN apk add --no-cache python2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need additional dependencies just because we change the registry?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is a fix to be able to build it on the arm64 architecture. I can't remember why it was necessary, because that commit is almost a year old.
with: | ||
context: . | ||
platforms: linux/amd64 #,linux/arm64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any idea what goes wrong for ARM?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On my machine building for arm64 works, but in the GitHub action it hangs. Maybe their emulation has some problems.
This PR replaces Docker Hub with the GitHub registry in the GitHub workflow and updates the used GitHub actions.
Needed for OpenTOSCA/opentosca-docker#57