Skip to content

Instantly share code, notes, and snippets.

View nhamlh's full-sized avatar

Nham Le nhamlh

View GitHub Profile
@nhamlh
nhamlh / Dockerfile
Last active August 13, 2020 14:26
Kong 2.1.0 bug messing up with clients' response
FROM ruby:2.5-slim-stretch
RUN mkdir /app
WORKDIR /app
COPY ./ ./
RUN bundle install
ENTRYPOINT ["sh", "-c", "bundle exec rackup -o 0.0.0.0 -p 80"]

Keybase proof

I hereby claim:

  • I am nhamlh on github.
  • I am nhamlh (https://keybase.io/nhamlh) on keybase.
  • I have a public key ASAk8OSS9UPkudbcxvtRv6spSjd9-uoIDe8HZqK9b4S95Ao

To claim this, I am signing this object:

package main
import (
"fmt"
"os"
"log"
"regexp"
"strconv"
)