Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
francojreyes committed Mar 28, 2024
1 parent b36f5f6 commit 6a8062a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
HASURAGRES_URL: https://graphql.csesoc.app
HASURAGRES_API_KEY: ${{ secrets.HASURAGRES_API_KEY }}
build:
name: "Test (${{ matrix.scraper }})"
name: "Build image (${{ matrix.scraper }})"
needs: [ test ]
runs-on: ubuntu-latest
strategy:
Expand Down
4 changes: 2 additions & 2 deletions libcal.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ ENV NODE_ENV production
WORKDIR /app

# Install production dependencies
COPY libcal/package.json nss/package-lock.json ./
COPY libcal/package.json libcal/package-lock.json ./
RUN npm ci

# Copy expected file structures
# sql should be in working directory of project
# Root sql should be sibling of project directory
COPY --from=builder /app/dist ./dist
COPY nss/sql ./sql
COPY libcal/sql ./sql
COPY sql ../

CMD npm start

0 comments on commit 6a8062a

Please sign in to comment.