Skip to content

Instantly share code, notes, and snippets.

View jimmysoda's full-sized avatar

Jaime Soto jimmysoda

  • Orlando, Florida, United States
  • 19:54 (UTC -04:00)
View GitHub Profile
@jimmysoda
jimmysoda / Dockerfile
Last active October 8, 2018 20:54
Dockerfile to test fix for yara installation with vcpkg in ubuntu xenial
FROM ubuntu:xenial
# Install git and vcpkg dependencies
RUN \
apt-get update && apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
curl \
git \
software-properties-common \
@jimmysoda
jimmysoda / Dockerfile
Created October 5, 2018 21:31
Dockerfile to test yara installation with vcpkg in ubuntu xenial
FROM ubuntu:xenial
# Install git and vcpkg dependencies
RUN \
apt-get update && apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
curl \
git \
software-properties-common \