Skip to content

Commit

Permalink
Merge pull request #858 from scidsg/fix-gh-actions
Browse files Browse the repository at this point in the history
Fix github actions workflow fail
  • Loading branch information
glenn-sorrentino authored Jan 6, 2025
2 parents 1fe5796 + 4f3369b commit cd1a738
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ FROM python:3.12.6-slim-bookworm
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
curl \
build-essential \
clang \
pkg-config \
libffi-dev \
libpq-dev \
libpcsclite-dev \
nettle-dev \
npm
curl \
build-essential \
clang \
pkg-config \
libffi-dev \
libpq-dev \
libpcsclite-dev \
nettle-dev \
npm

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
Expand All @@ -25,15 +25,15 @@ RUN pip install poetry

WORKDIR /app

COPY package.json package-lock.json .
COPY package.json package-lock.json ./

RUN npm install

ENV PYTHONPATH=/app

COPY pyproject.toml poetry.lock .
COPY pyproject.toml poetry.lock ./

RUN poetry install
RUN poetry install --no-root

ENV FLASK_APP="hushline"
CMD ["./scripts/dev_start.sh"]

0 comments on commit cd1a738

Please sign in to comment.