diff --git a/.github/workflows/GitAction.yml b/.github/workflows/GitAction.yml index c544b09..858a9ff 100644 --- a/.github/workflows/GitAction.yml +++ b/.github/workflows/GitAction.yml @@ -21,5 +21,3 @@ jobs: environment: prod access_key: ${{ secrets.XQUAER_ACCESS_KEY }} github_token: ${{ secrets.PICK_WEB_ADMIN }} - buildargs: | - BASE_URL=${{ secrets.BASE_URL }} diff --git a/.github/workflows/stagGitAction.yml b/.github/workflows/stagGitAction.yml index 2e3ced0..2584897 100644 --- a/.github/workflows/stagGitAction.yml +++ b/.github/workflows/stagGitAction.yml @@ -21,5 +21,3 @@ jobs: environment: stag access_key: ${{ secrets.XQUAER_ACCESS_KEY }} github_token: ${{ secrets.PICK_WEB_ADMIN }} - buildargs: | - BASE_URL=${{ secrets.STAG_BASE_URL }} diff --git a/Dockerfile b/Dockerfile index 08c0e48..cd554ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,6 @@ COPY . . RUN yarn build -ARG BASE_URL -ENV NEXT_PUBLIC_API_KEY $BASE_URL - EXPOSE 3000 CMD ["yarn", "dev"]