Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement changes required for Heroku hosting #36

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
9 changes: 9 additions & 0 deletions backend/typescript/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ WORKDIR /app
COPY package.json yarn.lock tsconfig.json ./

RUN yarn install
RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' \
-e 's|security.debian.org|archive.debian.org/|g' \
-e '/stretch-updates/d' /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
RUN curl https://cli-assets.heroku.com/install.sh | sh



ENV PATH="/usr/local/heroku/bin:${PATH}"

COPY . ./

Expand Down
Loading