mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 10:35:44 +00:00
* Update webrtv2 * Update gomod * Update run local * Update docker * Update mario 3 rom * Update script * Throw error when overlord cannot launch
14 lines
242 B
Docker
Vendored
14 lines
242 B
Docker
Vendored
From golang:1.12
|
|
|
|
RUN mkdir -p /cloud-game
|
|
COPY . /cloud-game/
|
|
WORKDIR /cloud-game
|
|
|
|
# Install server dependencies
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install pkg-config libvpx-dev libopus-dev libopusfile-dev -y
|
|
|
|
RUN go install ./cmd
|
|
|
|
EXPOSE 8000
|