-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/main' into feature/partners
# Conflicts: # .github/workflows/ci-dev.yml # .github/workflows/ci-prod.yml # Dockerfile # nuxt.config.ts
- Loading branch information
Showing
4 changed files
with
55 additions
and
30 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
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,18 +1,6 @@ | ||
FROM nginx | ||
|
||
WORKDIR /var/www | ||
# Not really useful outside GitHub Actions - actual builds happens there, | ||
# Dockerfile just copies the output to various flavors of Nginx image | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get install -y \ | ||
npm | ||
|
||
RUN npm install -g pnpm | ||
|
||
COPY . /var/www | ||
|
||
RUN pnpm install | ||
|
||
RUN pnpm run build | ||
|
||
RUN cp -r /var/www/.output/public/* /usr/share/nginx/html | ||
COPY .output/public/ /usr/share/nginx/html/ |
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