Skip to content
View rickyadriell's full-sized avatar
:octocat:
Building...
:octocat:
Building...

Organizations

@NRK-group

Block or report rickyadriell

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
rickyadriell/README.md

Pinned Loading

  1. web web Public

    Ricky Adriell's Portfolio

    MDX

  2. docker-build-example docker-build-example Public

    Docker Build example

    Go 2

  3. 01-founder-projects 01-founder-projects Public

    Collection of projects when I'm at 01 Founders

  4. Multistage Docker Build Multistage Docker Build
    1
    # Build stage
    2
    FROM golang:1.19.3-alpine3.16 AS build
    3
    WORKDIR /app
    4
    COPY . .
    5
    RUN go build -o main .