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 May 21, 2023
1 parent efe17b5 commit 4aeacbe
Show file tree
Hide file tree
Showing 2 changed files with 3 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
2 changes: 2 additions & 0 deletions docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ 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 \
ffmpeg
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install -r requirements.txt

0 comments on commit 4aeacbe

Please sign in to comment.