Skip to content

Commit

Permalink
Add required dependencies in onedocker image (#2122)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #2122

A previous change added a folly::Future  dependency in emp_games.  This requires a few runtime libs causing GH action failures (https://github.com/facebookresearch/fbpcs/actions/runs/4186989515/jobs/7256580450).  This change adds them to the onedocker & emp_games images.

Reviewed By: ankushksingh, musebc, gitfish77

Differential Revision: D43337593

fbshipit-source-id: 781e93cbd60bc99d919f14690f0f220ca53d18ad
  • Loading branch information
Ramesh Chandran authored and facebook-github-bot committed Feb 17, 2023
1 parent 155155e commit fb54de5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/emp_games/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ FROM ubuntu:${os_release} as prod
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update && apt-get install -y --no-install-recommends \
ca-certificates \
libboost-context1.71.0 \
libboost-regex1.71.0 \
libevent-2.1-7 \
libcurl4 \
libdouble-conversion3 \
libgflags2.2 \
Expand Down
2 changes: 2 additions & 0 deletions docker/onedocker/prod/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ RUN apt-get update && apt-get install -y \
python3.8 \
python3-pip \
ca-certificates \
libboost-context1.71.0 \
libboost-regex1.71.0 \
libevent-2.1-7 \
libcurl4 \
libdouble-conversion3 \
libgflags2.2 \
Expand Down
2 changes: 2 additions & 0 deletions docker/onedocker/test/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ RUN apt-get -y update && apt-get install -y --no-install-recommends \
python3-pip \
# emp_games and data_processing dependencies
ca-certificates \
libboost-context1.71.0 \
libboost-regex1.71.0 \
libevent-2.1-7 \
libcurl4 \
libdouble-conversion3 \
libgflags2.2 \
Expand Down

0 comments on commit fb54de5

Please sign in to comment.