mirror of https://github.com/CIRCL/lookyloo
fix: Initial attempt to fix the docker image
parent
760b479059
commit
fb1e98e05e
|
@ -56,7 +56,7 @@ jobs:
|
|||
- name: Push image
|
||||
run: |
|
||||
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
|
||||
|
||||
|
||||
# Change all uppercase to lowercase
|
||||
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
FROM ubuntu:bionic
|
||||
FROM ubuntu:focal
|
||||
ENV LC_ALL=C.UTF-8
|
||||
ENV LANG=C.UTF-8
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get -y upgrade
|
||||
RUN apt-get -y install wget python3.7-dev git python3.7-venv python3-pip
|
||||
RUN apt-get -y install wget python3-dev git python3-venv python3-pip
|
||||
RUN pip3 install poetry
|
||||
|
||||
WORKDIR lookyloo
|
||||
|
|
|
@ -31,6 +31,7 @@ services:
|
|||
- ./cache:/lookyloo/cache
|
||||
- ./scraped:/lookyloo/scraped
|
||||
- ./user_agents:/lookyloo/user_agents
|
||||
- ./config:/lookyloo/config
|
||||
ports:
|
||||
- "5100:5100"
|
||||
links:
|
||||
|
|
Loading…
Reference in New Issue