Skip to content

Commit

Permalink
feature: fix docker
Browse files Browse the repository at this point in the history
  • Loading branch information
ldiego73 committed May 28, 2020
1 parent a0f0c7e commit 39cc0be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile.countries
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ COPY --from=build /build/microservices/countries/interfaces/rest/package.json /a
COPY --from=build /build/microservices/countries/app/dist /app/microservices/countries/app/dist
COPY --from=build /build/microservices/countries/app/cert /app/microservices/countries/app/cert
COPY --from=build /build/microservices/countries/app/package.json /app/microservices/countries/app/package.json
COPY --from=build /build/microservices/countries/app/.env /app/microservices/countries/app/.env
COPY --from=build /build/microservices/countries/app/cert /app/cert
COPY --from=build /build/microservices/countries/app/.env /app/.env

RUN yarn install --production

Expand Down
2 changes: 1 addition & 1 deletion microservices/countries/app/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { CountryConsoleApplication } from '@micro/countries-console';
import { CountryGraphqlApplication } from '@micro/countries-graphql';
import { CountryRestApplication } from '@micro/countries-rest';

const app: MicroApplication = new CountryConsoleApplication();
const app: MicroApplication = new CountryRestApplication();

app.start();

0 comments on commit 39cc0be

Please sign in to comment.