Skip to content

Commit

Permalink
Fix build command to respect lockfile + add correct import
Browse files Browse the repository at this point in the history
  • Loading branch information
abought committed Jan 11, 2022
1 parent c96d668 commit edf33ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/vue/gwas_region.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import RegionPicker from 'localzoom/src/components/RegionPicker.vue';
import { DATA_TYPES } from 'localzoom/src/util/constants';
import { activateUserLD } from 'localzoom/src/util/lz-helpers';
import {setup_feature_metrics} from 'localzoom/src/util/metrics';
import {count_add_track, setup_feature_metrics} from 'localzoom/src/util/metrics';
const MAX_REGION_SIZE = 1000000;
Expand Down
2 changes: 1 addition & 1 deletion compose/production/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM node:fermium as jsbuilder
COPY ./package.json ./package-lock.json /build/
COPY . /build/
WORKDIR /build/
RUN npm install ci && npm run prod
RUN npm ci && npm run prod


# Step 2 (main): Django app. Install python dependencies, add volume mounts, and run.
Expand Down

0 comments on commit edf33ae

Please sign in to comment.