Skip to content

Commit

Permalink
Fix alpine Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
aobolensk committed Nov 27, 2023
1 parent 687ea1b commit b2d96e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Nightly

on:
schedule:
- cron: '0 8 * * *'
on: [push]

jobs:
pypy-tests:
Expand Down
3 changes: 3 additions & 0 deletions docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ FROM python:3.11-alpine
WORKDIR /walbot
ADD . /walbot

ENV LLVM_CONFIG=/usr/lib/llvm14/bin/llvm-config
RUN apk add --no-cache \
build-base \
linux-headers \
bash \
git \
llvm14-dev \
py3-numpy \
ffmpeg
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install -r requirements.txt

0 comments on commit b2d96e5

Please sign in to comment.