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
|
- name: Push image
|
||||||
run: |
|
run: |
|
||||||
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
|
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
|
||||||
|
|
||||||
# Change all uppercase to lowercase
|
# Change all uppercase to lowercase
|
||||||
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
|
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 LC_ALL=C.UTF-8
|
||||||
ENV LANG=C.UTF-8
|
ENV LANG=C.UTF-8
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get -y upgrade
|
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
|
RUN pip3 install poetry
|
||||||
|
|
||||||
WORKDIR lookyloo
|
WORKDIR lookyloo
|
||||||
|
|
|
@ -31,6 +31,7 @@ services:
|
||||||
- ./cache:/lookyloo/cache
|
- ./cache:/lookyloo/cache
|
||||||
- ./scraped:/lookyloo/scraped
|
- ./scraped:/lookyloo/scraped
|
||||||
- ./user_agents:/lookyloo/user_agents
|
- ./user_agents:/lookyloo/user_agents
|
||||||
|
- ./config:/lookyloo/config
|
||||||
ports:
|
ports:
|
||||||
- "5100:5100"
|
- "5100:5100"
|
||||||
links:
|
links:
|
||||||
|
|
Loading…
Reference in New Issue