-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor project name in pyproject.toml
- Loading branch information
1 parent
4b1e6f3
commit 11a205a
Showing
9 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dependencies: | ||
- name: eoapi | ||
repository: https://devseed.com/eoapi-k8s/ | ||
version: 0.4.17 | ||
digest: sha256:adbb8a0db399bf32efbf12ffafafbf07c6d4f676f78b2bf2aa6befdc5f1a4f51 | ||
generated: "2024-10-16T11:33:15.655622351+02:00" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
FROM node:alpine | ||
WORKDIR /app | ||
FROM node:20-alpine as build | ||
WORKDIR /src | ||
RUN corepack enable && corepack prepare yarn@stable --activate | ||
COPY package.json /app | ||
RUN yarn install | ||
COPY . /app | ||
CMD ["yarn", "run", "start"] | ||
COPY . . | ||
RUN yarn install | ||
RUN yarn build | ||
RUN ls -la . | ||
|
||
FROM nginx:alpine | ||
COPY --from=build /src/dist /usr/share/nginx/html | ||
EXPOSE 8080 |
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